home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Text / print / HPDJ400Src.lha / global.h < prev    next >
C/C++ Source or Header  |  2004-05-25  |  940b  |  30 lines

  1. /* HP Deskjet 400C */
  2.  
  3. /* Headers */
  4.  
  5. #include <exec/memory.h>
  6. #include <exec/types.h>
  7. #include <exec/nodes.h>
  8. #include <exec/lists.h>
  9. #include <proto/exec.h>
  10.  
  11. #include <devices/printer.h>
  12. #include <devices/prtbase.h>
  13. #include <devices/prtgfx.h>
  14.  
  15. /* Prototypes */
  16.  
  17. LONG StripWhiteSpace(UBYTE * source,LONG size);
  18. LONG CompressMethod2(UBYTE *src, UBYTE *dest, LONG count);
  19. void SetDensity(ULONG density);
  20. int  DoSpecial(UWORD *cmd, char out[], BYTE *v, BYTE *c, BYTE *f, UBYTE p[]);
  21. void numberString(UBYTE p, int x, char outputBuffer[]);
  22. int  ConvFunc(char *buf, char ch,int flag);
  23. int  Close(union printerIO *ior);
  24. int  Render(long ct, long x, long y, long status);
  25. VOID CorrectColours(UBYTE * gamma_table, UBYTE *colors[], ULONG width);
  26. int  DumpBWPrint(UBYTE *colors[],ULONG BufSize);
  27. int  DumpColorPrint(UBYTE *colors[],ULONG BufSize);
  28. void Transfer(struct PrtInfo *PInfo, ULONG y, UBYTE *colors[], UWORD RowSize, UWORD NumColorBufs);
  29.  
  30.